home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / moniwiki_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  61 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  Ref: SSR Team
  5. #  This script is released under the GNU GPL v2
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(15566);
  11.  script_bugtraq_id(11516);
  12.  script_version("$Revision: 1.3 $");
  13.  
  14.  script_name(english:"MoniWiki XSS");
  15.  desc["english"] = "
  16. The remote host seems to be running MoniWiki, a wiki web application 
  17. written in PHP.
  18.  
  19. The remote version of this software is vulnerable to cross-site scripting 
  20. attacks, through the script 'wiki.php'.
  21.  
  22. With a specially crafted URL, an attacker can cause arbitrary code 
  23. execution in users' browsers resulting in a loss of integrity.
  24.  
  25. Solution: Upgrade to version 1.0.9 of this software
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  script_summary(english:"Test for XSS flaw in MoniWiki");
  30.  script_category(ACT_GATHER_INFO);
  31.  script_family(english:"CGI abuses : XSS");
  32.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  33.  script_dependencie("http_version.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. #
  39. # The script code starts here
  40. #
  41.  
  42. include("http_func.inc");
  43. include("http_keepalive.inc");
  44.  
  45. port = get_http_port(default:80);
  46.  
  47. if(!get_port_state(port))exit(0);
  48. if(!can_host_php(port:port))exit(0);
  49.  
  50. foreach d (cgi_dirs())
  51. {
  52.  req = http_get(item:string(d, "/wiki.php/<script>foo</script>"), port:port);
  53.  res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  54.  if( res == NULL ) exit(0);
  55.  if("<wikiHeader>" >< res && "<script>foo</script>" >< res )
  56.  {
  57.      security_warning(port);
  58.     exit(0);
  59.  }
  60. }
  61.